All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.naming.CommunicationException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.naming.NamingException
                           |
                           +----java.naming.CommunicationException

public class CommunicationException
extends NamingException
This exception is raised when the client is unable to communicate with the directory or naming service.


Constructor Index

 o CommunicationException()
Constructs a new instance of CommunicationException.
 o CommunicationException(Name, Object, Name)
Constructs a new instance of CommunicationException using the arguments supplied.
 o CommunicationException(Name, Object, Name, String)
Constructs a new instance of CommunicationException.
 o CommunicationException(String)
Constructs a new instance of CommunicationException using the arguments supplied.

Constructors

 o CommunicationException
 public CommunicationException(Name resolvedName,
                               Object resolvedObj,
                               Name remainingName,
                               String explanation)
Constructs a new instance of CommunicationException.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
explanation - Additional detail about this exception.
 o CommunicationException
 public CommunicationException(Name resolvedName,
                               Object resolvedObj,
                               Name remainingName)
Constructs a new instance of CommunicationException using the arguments supplied.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
 o CommunicationException
 public CommunicationException(String explanation)
Constructs a new instance of CommunicationException using the arguments supplied.

Parameters:
explanation - Additional detail about this exception.
 o CommunicationException
 public CommunicationException()
Constructs a new instance of CommunicationException.


All Packages  Class Hierarchy  This Package  Previous  Next  Index